home *** CD-ROM | disk | FTP | other *** search
- package com.ms.dxmedia;
-
- import com.ms.com.ComFailException;
- import com.ms.dxmedia.rawcom.IDAView;
-
- public class BvrsToRun {
- private IDAView _view;
- private boolean _invalid = false;
-
- BvrsToRun(IDAView var1) {
- this._view = var1;
- }
-
- void invalidate() {
- this._invalid = true;
- }
-
- public int add(Behavior var1) {
- try {
- return this._invalid ? 0 : this._view.AddBvrToRun(var1.getCOMBvr());
- } catch (ComFailException var4) {
- throw StaticsBase.handleError(var4);
- }
- }
-
- IDAView getView() {
- return this._view;
- }
-
- public void remove(int var1) {
- try {
- this._view.RemoveRunningBvr(var1);
- } catch (ComFailException var4) {
- throw StaticsBase.handleError(var4);
- }
- }
- }
-